home *** CD-ROM | disk | FTP | other *** search
- #pragma once
-
- #include "standardfile_.h"
- //
- // standardputfile is a base class to interface to CustomPutFile
- //
- // Note for CodeWarriors: if your compiler complains that it can not
- // use a struct as a base class for standardputfile you probably are using
- // a precompiled header file generated with the C compiler with this C++
- // code. You should recompile them with the C++ compiler, and all should
- // be fine.
- //
- class standardputfile : public standardfile
- {
- public:
- standardputfile( ConstStr255Param prompt, short dlogID = sfPutDialogID);
-
- ~standardputfile();
-
- Boolean doIt( ConstStr255Param defaultName);
-
- private:
-
- ConstStr255Param the_prompt;
- };
-